home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / dev / gui / gtlayout.lha / Source / gtlayout_data.c < prev    next >
C/C++ Source or Header  |  1999-01-02  |  906b  |  43 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1999 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. **
  7. **    :ts=8
  8. */
  9.  
  10. #ifndef _GTLAYOUT_GLOBAL_H
  11. #include "gtlayout_global.h"
  12. #endif
  13.  
  14. #ifndef LINK_LIB
  15. struct Library * SysBase;
  16. #endif /* !LINK_LIB */
  17.  
  18. struct Library *    IntuitionBase;
  19. struct Library *    GfxBase;
  20. struct Library *    UtilityBase;
  21. struct Library *    GadToolsBase;
  22. struct Library *    KeymapBase;
  23. struct Library *    LayersBase;
  24. struct SignalSemaphore    LTP_LockSemaphore;
  25. struct MinList        LTP_LockList;
  26. struct IClass *        LTP_ImageClass;
  27. struct IClass *        LTP_LevelClass;
  28. struct IClass *        LTP_PopupClass;
  29. struct IClass *        LTP_TabClass;
  30. struct IClass *        LTP_TextEditClass;
  31. struct MinList        LTP_EmptyList;
  32.  
  33. STRPTR            LTP_DecimalPoint;
  34. STRPTR            LTP_NumberFormat;
  35.  
  36. BOOLEAN            V39;
  37. BOOLEAN            V40;
  38.  
  39. #ifdef DO_PICKSHORTCUTS
  40. UBYTE *            LTP_Keys[2];
  41. struct SignalSemaphore    LTP_KeySemaphore;
  42. #endif /* DO_PICKSHORTCUTS */
  43.